home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / icon / Source / Icont / H / General next >
Encoding:
Text File  |  1990-07-20  |  372 b   |  22 lines

  1. /*
  2.  * general.h - general definitions used in both translation and linking.
  3.  */
  4.  
  5. #define MaxFileName 256
  6.  
  7. struct fileparts {            /* struct of file name parts */
  8.    char *dir;                /* directory */
  9.    char *name;                /* name */
  10.    char *ext;                /* extension */
  11. #if MVS
  12.    char *member;
  13. #endif                    /* MVS */
  14.    };
  15.  
  16. union xval {
  17.    long ival;
  18.    double rval;
  19.    char *sval;
  20.    };
  21.  
  22.